home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / timeConstants.c,v < prev    next >
Text File  |  1988-06-27  |  2KB  |  91 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.27.17.23.43;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.19.14.33.19;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Use spriteTime.h instead of time.h.
  26. @
  27. text
  28. @/* 
  29.  * timeConstants.c --
  30.  *
  31.  *    Definitions of variables providing frequently-used time values.
  32.  *
  33.  * Copyright 1986, 1988 Regents of the University of California
  34.  * Permission to use, copy, modify, and distribute this
  35.  * software and its documentation for any purpose and without
  36.  * fee is hereby granted, provided that the above copyright
  37.  * notice appear in all copies.  The University of California
  38.  * makes no representations about the suitability of this
  39.  * software for any purpose.  It is provided "as is" without
  40.  * express or implied warranty.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: timeConstants.c,v 1.1 88/06/19 14:33:19 ouster Exp $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include <sprite.h>
  48. #include <spriteTime.h>
  49.  
  50. Time time_ZeroSeconds        = {        0,      0 };
  51. Time time_OneMicrosecond    = {        0,      1 };
  52. Time time_OneMillisecond    = {        0,   1000 };
  53. Time time_TenMilliseconds    = {        0,  10000 };
  54. Time time_HundredMilliseconds    = {        0, 100000 };
  55. Time time_HalfSecond        = {        0, 500000 };
  56. Time time_OneSecond        = {        1,      0 };
  57. Time time_TwoSeconds        = {        2,      0 };
  58. Time time_TenSeconds        = {       10,      0 };
  59. Time time_OneMinute        = {       60,      0 };
  60. Time time_OneHour        = {     3600,      0 };
  61. Time time_OneDay        = {    86400,      0 };
  62. Time time_OneYear        = { 31536000,      0 };
  63. Time time_OneLeapYear        = { 31622400,      0 };
  64. Time_Parts time_ZeroParts    = {
  65.     0,         /* year     */
  66.     0,         /* month     */
  67.     0,         /* dayOfYear     */
  68.     0,         /* dayOfMonth     */
  69.     0,         /* dayOfWeek     */
  70.     0,        /* hours     */
  71.     0,        /* minutes     */
  72.     0,        /* seconds     */
  73.     0,         /* localOffset     */
  74.     FALSE,     /* is DST?    */
  75. };
  76. @
  77.  
  78.  
  79. 1.1
  80. log
  81. @Initial revision
  82. @
  83. text
  84. @d17 1
  85. a17 1
  86. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  87. d21 1
  88. a21 1
  89. #include "time.h"
  90. @
  91.